home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / componen / appli / demo / applink.ini < prev    next >
Encoding:
INI File  |  1995-03-07  |  5.7 KB  |  115 lines

  1. ; /****************************************************************************\
  2. ; * NetBIOS Server (APLKNB.EXE) Settings                                       *
  3. ; \****************************************************************************/
  4.  
  5. [NetBIOS Server]
  6.  
  7. ; Defines when the NetBIOS server is shutdown. If this entry is 1, the server is
  8. ; automatically unloaded after the last socket within a computer closes. A value
  9. ; of 0 instructs the server to remain loaded after the last socket closes. The
  10. ; server must be manually closed via Task Manager or by shutting down Windows.
  11. ; The default is 1.
  12.  
  13. AutoUnload=1
  14.  
  15. ; Identifies the network protocol to network adapter binding that NetBIOS should
  16. ; use to process network commands. The default is 0.
  17.  
  18. LanaNum=0
  19.  
  20. ; Specifies the computer's reference name. Messages are sent to a destination
  21. ; computer using the reference name. If a name is not provided or this option
  22. ; is removed from the INI file, the server will attempt to ascertain the name
  23. ; from the operating system. This is the default behavior.
  24.  
  25. MachineName=
  26.  
  27. ; Specifies how the NetBIOS server is represented on the desktop. Values are:
  28. ;
  29. ; 0 = Display icon, include entry in Task Manager
  30. ; 1 = No icon, include entry in Task Manager
  31. ; 2 = No icon, do not include entry in Task Manager
  32. ;
  33. ; The default is 0.
  34.  
  35. Appearance=0
  36.  
  37. ; Specifies whether the NetBIOS server is to display a message box if an error is
  38. ; encountered during initialization. If this entry is 1, the server will display
  39. ; a system-modal message box containing a description of the error. A value of 0
  40. ; disables the message box. In either case, the error will also be posted to the
  41. ; server's log file APLKNB.ERR located in the same directory that the server was
  42. ; launched from. The default is 1.
  43.  
  44. MessagePopup=1
  45.  
  46. ; Specifies the maximum number of concurrent connections maintained by the server.
  47. ; A connection is a logical session between two computers. The server allocates a
  48. ; connection upon receipt of a message for a destination that is not already in it's
  49. ; connection table. The connection remains enabled as long as there is activity on it.
  50. ; If the maximum number of connections is reached, the server will begin to break
  51. ; least-used connections in order to make room for new ones.
  52.  
  53. Connections=10
  54.  
  55. ; Specifies the number of receive network control blocks (NCBs) available per connection.
  56. ; Network control blocks are a limited global resource. Typically, the default setting
  57. ; of 2 is adequate for most network needs. If you experience frequent timeouts you can
  58. ; try increasing this value; however, it will require more of your system's resources.
  59. ; Note that most NetBIOS implementations provide for an absolute maximum of only 255 NCBs.
  60.  
  61. PerConnectReceiveBuffers=0
  62.  
  63. ; Specifies the total number of pending receive network control blocks (NCB) that are
  64. ; available to service requests from other computers. Usually, the default setting of
  65. ; 5 is adequate for most situations. If your application is a server-type application
  66. ; that receives many requests at once, you may need to increase this value.
  67.  
  68. ReceiveBuffers=5
  69.  
  70. ; NOTE: PerConnectReceiveBuffers and ReceiveBuffers are mutually-exclusive options,
  71. ; therefore use one method or the other. PerConnectReceiveBuffers will be used if both
  72. ; options are specified.
  73.  
  74. ; Specifies the number of listen network control blocks that are available to service
  75. ; requests for new connections. The default setting of 2 is usually sufficient for most
  76. ; needs. If you experience frequent 'No answer from partner' errors, and you are sure that
  77. ; network connections are working between the computers, the errors could be related to
  78. ; insufficient pending listen NCBs. In this case, try increasing this value; however keep
  79. ; in mind that increasing the value will require more of your system's resources.
  80.  
  81. Listens=2
  82.  
  83. ; Specifies the number of pending receive network control blocks that are available to
  84. ; service broadcast requests. Usually, the default setting of 2 is adequate for most
  85. ; situations. If your application is broadcast-intensive, you may need to increase this
  86. ; value if you find that messages are being lost frequently. However, keep in mind that
  87. ; broadcast communication is a best-effort delivery scheme, that is, not guaranteed.
  88.  
  89. BroadcastReceiveBuffers=2
  90.  
  91. ; Specifies the total number of network control blocks that are available for sending
  92. ; messages. Outgoing messages are queued internally until an NCB from this pool becomes
  93. ; available. The default setting of 2 is usually sufficient for most application needs.
  94.  
  95. SendBuffers=2
  96.  
  97. ; Defines the frequency (in seconds) at which the server sweeps the connection table to
  98. ; 'age' idle connections. Each connection has an associated idle time that specifies the
  99. ; amount of time since the last message sent/received over the connection. The server
  100. ; uses the idle time value to determine which connections to break when either the
  101. ; connection table becomes full or the disconnect idle time is exceeded (as described
  102. ; below). In the case of a full connection table, the server will break the least-used
  103. ; idle connection, that is, the connection with the most idle time. (You should not need
  104. ; to change this entry.)
  105.  
  106. IdleTimeSweepFrequency=60
  107.  
  108. ; Specifies the number of minutes a connection can remain idle before the connection is
  109. ; broken by the server and removed from the connection table. A value of 0 will disable
  110. ; the server's disconnect-idle-time processing, and prevent connections from being broken
  111. ; in this manner. The server will continue to break least-used idle connections when the
  112. ; connection table becomes full and a new connection request is received.
  113.  
  114. DisconnectIdleTime=0
  115.